Lines Matching +full:a +full:- +full:display

1 /*-
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
38 #include "efi-osdep.h"
39 #include "efivar-dp.h"
41 #include "uefi-dplib.h"
44 * This is a lie, but since we have converted everything
55 * %s -> %S in spots (where it is still UCS-2)
56 * %a (ascii) -> %s
57 * %g -> %36s hack to print guid (see above for caveat)
65 (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
66 Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
67 SPDX-License-Identifier: BSD-2-Clause-Patent
74 Concatenates a formatted unicode string to allocated pool. The caller must
102 if ((Str->Count + (Count + 1)) > Str->Capacity) { in UefiDevicePathLibCatPrint()
103 Str->Capacity = (Str->Count + (Count + 1) * 2); in UefiDevicePathLibCatPrint()
104 Str->Str = reallocf ( in UefiDevicePathLibCatPrint()
105 Str->Str, in UefiDevicePathLibCatPrint()
106 Str->Capacity in UefiDevicePathLibCatPrint()
108 ASSERT (Str->Str != NULL); in UefiDevicePathLibCatPrint()
112 vsnprintf (Str->Str + Str->Count, Str->Capacity - Str->Count, Fmt, Args); in UefiDevicePathLibCatPrint()
113 Str->Count += Count; in UefiDevicePathLibCatPrint()
116 return Str->Str; in UefiDevicePathLibCatPrint()
120 Converts a PCI device path structure to its string representative.
125 of the display node is used, where applicable. If DisplayOnly
126 is FALSE, then the longer text representation of the display node
129 representation for a device node can be used, where applicable.
143 UefiDevicePathLibCatPrint (Str, "Pci(0x%x,0x%x)", Pci->Device, Pci->Function); in DevPathToTextPci()
147 Converts a PC Card device path structure to its string representative.
152 of the display node is used, where applicable. If DisplayOnly
153 is FALSE, then the longer text representation of the display node
156 representation for a device node can be used, where applicable.
170 UefiDevicePathLibCatPrint (Str, "PcCard(0x%x)", Pccard->FunctionNumber); in DevPathToTextPccard()
174 Converts a Memory Map device path structure to its string representative.
179 of the display node is used, where applicable. If DisplayOnly
180 is FALSE, then the longer text representation of the display node
183 representation for a device node can be used, where applicable.
200 MemMap->MemoryType, in DevPathToTextMemMap()
201 MemMap->StartingAddress, in DevPathToTextMemMap()
202 MemMap->EndingAddress in DevPathToTextMemMap()
207 Converts a Vendor device path structure to its string representative.
212 of the display node is used, where applicable. If DisplayOnly
213 is FALSE, then the longer text representation of the display node
216 representation for a device node can be used, where applicable.
235 switch (DevicePathType (&Vendor->Header)) { in DevPathToTextVendor()
243 if (CompareGuid (&Vendor->Guid, &gEfiPcAnsiGuid)) { in DevPathToTextVendor()
246 } else if (CompareGuid (&Vendor->Guid, &gEfiVT100Guid)) { in DevPathToTextVendor()
249 } else if (CompareGuid (&Vendor->Guid, &gEfiVT100PlusGuid)) { in DevPathToTextVendor()
252 } else if (CompareGuid (&Vendor->Guid, &gEfiVTUTF8Guid)) { in DevPathToTextVendor()
255 } else if (CompareGuid (&Vendor->Guid, &gEfiUartDevicePathGuid)) { in DevPathToTextVendor()
256 FlowControlMap = (((UART_FLOW_CONTROL_DEVICE_PATH *)Vendor)->FlowControlMap); in DevPathToTextVendor()
275 } else if (CompareGuid (&Vendor->Guid, &gEfiSasDevicePathGuid)) { in DevPathToTextVendor()
279 ((SAS_DEVICE_PATH *)Vendor)->SasAddress, in DevPathToTextVendor()
280 ((SAS_DEVICE_PATH *)Vendor)->Lun, in DevPathToTextVendor()
281 ((SAS_DEVICE_PATH *)Vendor)->RelativeTargetPort in DevPathToTextVendor()
283 Info = (((SAS_DEVICE_PATH *)Vendor)->DeviceTopology); in DevPathToTextVendor()
298 // Value 0x0 thru 0xFF -> Drive 1 thru Drive 256 in DevPathToTextVendor()
306 UefiDevicePathLibCatPrint (Str, "0x%x)", ((SAS_DEVICE_PATH *)Vendor)->Reserved); in DevPathToTextVendor()
308 } else if (CompareGuid (&Vendor->Guid, &gEfiDebugPortProtocolGuid)) { in DevPathToTextVendor()
325 DataLength = DevicePathNodeLength (&Vendor->Header) - sizeof (VENDOR_DEVICE_PATH); in DevPathToTextVendor()
326 UefiDevicePathLibCatPrint (Str, "Ven%s(%36s", Type, G(&Vendor->Guid)); in DevPathToTextVendor()
330 …UefiDevicePathLibCatPrint (Str, "%02x", ((VENDOR_DEVICE_PATH_WITH_DATA *)Vendor)->VendorDefinedDat… in DevPathToTextVendor()
338 Converts a Controller device path structure to its string representative.
343 of the display node is used, where applicable. If DisplayOnly
344 is FALSE, then the longer text representation of the display node
347 representation for a device node can be used, where applicable.
364 Controller->ControllerNumber in DevPathToTextController()
369 Converts a BMC device path structure to its string representative.
374 of the display node is used, where applicable. If DisplayOnly
375 is FALSE, then the longer text representation of the display node
378 representation for a device node can be used, where applicable.
395 Bmc->InterfaceType, in DevPathToTextBmc()
396 ReadUnaligned64 ((&Bmc->BaseAddress)) in DevPathToTextBmc()
401 Converts a ACPI device path structure to its string representative.
406 of the display node is used, where applicable. If DisplayOnly
407 is FALSE, then the longer text representation of the display node
410 representation for a device node can be used, where applicable.
424 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) { in DevPathToTextAcpi()
425 switch (EISA_ID_TO_NUM (Acpi->HID)) { in DevPathToTextAcpi()
427 UefiDevicePathLibCatPrint (Str, "PciRoot(0x%x)", Acpi->UID); in DevPathToTextAcpi()
431 UefiDevicePathLibCatPrint (Str, "PcieRoot(0x%x)", Acpi->UID); in DevPathToTextAcpi()
435 UefiDevicePathLibCatPrint (Str, "Floppy(0x%x)", Acpi->UID); in DevPathToTextAcpi()
439 UefiDevicePathLibCatPrint (Str, "Keyboard(0x%x)", Acpi->UID); in DevPathToTextAcpi()
443 UefiDevicePathLibCatPrint (Str, "Serial(0x%x)", Acpi->UID); in DevPathToTextAcpi()
447 UefiDevicePathLibCatPrint (Str, "ParallelPort(0x%x)", Acpi->UID); in DevPathToTextAcpi()
451 … UefiDevicePathLibCatPrint (Str, "Acpi(PNP%04x,0x%x)", EISA_ID_TO_NUM (Acpi->HID), Acpi->UID); in DevPathToTextAcpi()
455 UefiDevicePathLibCatPrint (Str, "Acpi(0x%08x,0x%x)", Acpi->HID, Acpi->UID); in DevPathToTextAcpi()
460 Converts a ACPI extended HID device path structure to its string representative.
465 of the display node is used, where applicable. If DisplayOnly
466 is FALSE, then the longer text representation of the display node
469 representation for a device node can be used, where applicable.
502 while (CurrentLength < AcpiEx->Header.Length[0] && StrIndex < ARRAY_SIZE (Strings)) { in DevPathToTextAcpiEx()
511 if ((EISA_ID_TO_NUM (AcpiEx->HID) == 0x0A03) || in DevPathToTextAcpiEx()
512 ((EISA_ID_TO_NUM (AcpiEx->CID) == 0x0A03) && (EISA_ID_TO_NUM (AcpiEx->HID) != 0x0A08))) in DevPathToTextAcpiEx()
517 UefiDevicePathLibCatPrint (Str, "PciRoot(0x%x)", AcpiEx->UID); in DevPathToTextAcpiEx()
523 if ((EISA_ID_TO_NUM (AcpiEx->HID) == 0x0A08) || (EISA_ID_TO_NUM (AcpiEx->CID) == 0x0A08)) { in DevPathToTextAcpiEx()
527 UefiDevicePathLibCatPrint (Str, "PcieRoot(0x%x)", AcpiEx->UID); in DevPathToTextAcpiEx()
541 ((AcpiEx->HID >> 10) & 0x1f) + 'A' - 1, in DevPathToTextAcpiEx()
542 ((AcpiEx->HID >> 5) & 0x1f) + 'A' - 1, in DevPathToTextAcpiEx()
543 ((AcpiEx->HID >> 0) & 0x1f) + 'A' - 1, in DevPathToTextAcpiEx()
544 (AcpiEx->HID >> 16) & 0xFFFF in DevPathToTextAcpiEx()
550 ((AcpiEx->CID >> 10) & 0x1f) + 'A' - 1, in DevPathToTextAcpiEx()
551 ((AcpiEx->CID >> 5) & 0x1f) + 'A' - 1, in DevPathToTextAcpiEx()
552 ((AcpiEx->CID >> 0) & 0x1f) + 'A' - 1, in DevPathToTextAcpiEx()
553 (AcpiEx->CID >> 16) & 0xFFFF in DevPathToTextAcpiEx()
563 if (AcpiEx->CID == 0) { in DevPathToTextAcpiEx()
596 UefiDevicePathLibCatPrint (Str, "0x%x)", AcpiEx->UID); in DevPathToTextAcpiEx()
604 AcpiEx->UID, in DevPathToTextAcpiEx()
614 Converts a ACPI address device path structure to its string representative.
619 of the display node is used, where applicable. If DisplayOnly
620 is FALSE, then the longer text representation of the display node
623 representation for a device node can be used, where applicable.
642 AdditionalAdrCount = (UINT16)((Length - 8) / 4); in DevPathToTextAcpiAdr()
644 UefiDevicePathLibCatPrint (Str, "AcpiAdr(0x%x", AcpiAdr->ADR); in DevPathToTextAcpiAdr()
645 Addr = &AcpiAdr->ADR + 1; in DevPathToTextAcpiAdr()
654 Converts a ATAPI device path structure to its string representative.
659 of the display node is used, where applicable. If DisplayOnly
660 is FALSE, then the longer text representation of the display node
663 representation for a device node can be used, where applicable.
679 UefiDevicePathLibCatPrint (Str, "Ata(0x%x)", Atapi->Lun); in DevPathToTextAtapi()
684 (Atapi->PrimarySecondary == 1) ? "Secondary" : "Primary", in DevPathToTextAtapi()
685 (Atapi->SlaveMaster == 1) ? "Slave" : "Master", in DevPathToTextAtapi()
686 Atapi->Lun in DevPathToTextAtapi()
692 Converts a SCSI device path structure to its string representative.
697 of the display node is used, where applicable. If DisplayOnly
698 is FALSE, then the longer text representation of the display node
701 representation for a device node can be used, where applicable.
715 UefiDevicePathLibCatPrint (Str, "Scsi(0x%x,0x%x)", Scsi->Pun, Scsi->Lun); in DevPathToTextScsi()
719 Converts a Fibre device path structure to its string representative.
724 of the display node is used, where applicable. If DisplayOnly
725 is FALSE, then the longer text representation of the display node
728 representation for a device node can be used, where applicable.
742 UefiDevicePathLibCatPrint (Str, "Fibre(0x%lx,0x%lx)", Fibre->WWN, Fibre->Lun); in DevPathToTextFibre()
746 Converts a FibreEx device path structure to its string representative.
751 of the display node is used, where applicable. If DisplayOnly
752 is FALSE, then the longer text representation of the display node
755 representation for a device node can be used, where applicable.
771 for (Index = 0; Index < sizeof (FibreEx->WWN) / sizeof (FibreEx->WWN[0]); Index++) { in DevPathToTextFibreEx()
772 UefiDevicePathLibCatPrint (Str, "%02x", FibreEx->WWN[Index]); in DevPathToTextFibreEx()
776 for (Index = 0; Index < sizeof (FibreEx->Lun) / sizeof (FibreEx->Lun[0]); Index++) { in DevPathToTextFibreEx()
777 UefiDevicePathLibCatPrint (Str, "%02x", FibreEx->Lun[Index]); in DevPathToTextFibreEx()
784 Converts a Sas Ex device path structure to its string representative.
789 of the display node is used, where applicable. If DisplayOnly
790 is FALSE, then the longer text representation of the display node
793 representation for a device node can be used, where applicable.
810 for (Index = 0; Index < sizeof (SasEx->SasAddress) / sizeof (SasEx->SasAddress[0]); Index++) { in DevPathToTextSasEx()
811 UefiDevicePathLibCatPrint (Str, "%02x", SasEx->SasAddress[Index]); in DevPathToTextSasEx()
815 for (Index = 0; Index < sizeof (SasEx->Lun) / sizeof (SasEx->Lun[0]); Index++) { in DevPathToTextSasEx()
816 UefiDevicePathLibCatPrint (Str, "%02x", SasEx->Lun[Index]); in DevPathToTextSasEx()
819 UefiDevicePathLibCatPrint (Str, ",0x%x,", SasEx->RelativeTargetPort); in DevPathToTextSasEx()
821 if (((SasEx->DeviceTopology & 0x0f) == 0) && ((SasEx->DeviceTopology & BIT7) == 0)) { in DevPathToTextSasEx()
823 } else if (((SasEx->DeviceTopology & 0x0f) <= 2) && ((SasEx->DeviceTopology & BIT7) == 0)) { in DevPathToTextSasEx()
827 ((SasEx->DeviceTopology & BIT4) != 0) ? "SATA" : "SAS", in DevPathToTextSasEx()
828 ((SasEx->DeviceTopology & BIT5) != 0) ? "External" : "Internal", in DevPathToTextSasEx()
829 ((SasEx->DeviceTopology & BIT6) != 0) ? "Expanded" : "Direct" in DevPathToTextSasEx()
831 if ((SasEx->DeviceTopology & 0x0f) == 1) { in DevPathToTextSasEx()
835 // Value 0x0 thru 0xFF -> Drive 1 thru Drive 256 in DevPathToTextSasEx()
837 UefiDevicePathLibCatPrint (Str, "0x%x", ((SasEx->DeviceTopology >> 8) & 0xff) + 1); in DevPathToTextSasEx()
840 UefiDevicePathLibCatPrint (Str, "0x%x,0,0,0", SasEx->DeviceTopology); in DevPathToTextSasEx()
848 Converts a NVM Express Namespace device path structure to its string representative.
853 of the display node is used, where applicable. If DisplayOnly
854 is FALSE, then the longer text representation of the display node
857 representation for a device node can be used, where applicable.
872 Uuid = (UINT8 *)&Nvme->NamespaceUuid; in DevPathToTextNVMe()
875 "NVMe(0x%x,%02x-%02x-%02x-%02x-%02x-%02x-%02x-%02x)", in DevPathToTextNVMe()
876 Nvme->NamespaceId, in DevPathToTextNVMe()
889 Converts a UFS device path structure to its string representative.
894 of the display node is used, where applicable. If DisplayOnly
895 is FALSE, then the longer text representation of the display node
898 representation for a device node can be used, where applicable.
912 UefiDevicePathLibCatPrint (Str, "UFS(0x%x,0x%x)", Ufs->Pun, Ufs->Lun); in DevPathToTextUfs()
916 Converts a SD (Secure Digital) device path structure to its string representative.
921 of the display node is used, where applicable. If DisplayOnly
922 is FALSE, then the longer text representation of the display node
925 representation for a device node can be used, where applicable.
942 Sd->SlotNumber in DevPathToTextSd()
947 Converts a EMMC (Embedded MMC) device path structure to its string representative.
952 of the display node is used, where applicable. If DisplayOnly
953 is FALSE, then the longer text representation of the display node
956 representation for a device node can be used, where applicable.
973 Emmc->SlotNumber in DevPathToTextEmmc()
978 Converts a 1394 device path structure to its string representative.
983 of the display node is used, where applicable. If DisplayOnly
984 is FALSE, then the longer text representation of the display node
987 representation for a device node can be used, where applicable.
1002 // Guid has format of IEEE-EUI64 in DevPathToText1394()
1004 UefiDevicePathLibCatPrint (Str, "I1394(%016lx)", F1394DevPath->Guid); in DevPathToText1394()
1008 Converts a USB device path structure to its string representative.
1013 of the display node is used, where applicable. If DisplayOnly
1014 is FALSE, then the longer text representation of the display node
1017 representation for a device node can be used, where applicable.
1031 UefiDevicePathLibCatPrint (Str, "USB(0x%x,0x%x)", Usb->ParentPortNumber, Usb->InterfaceNumber); in DevPathToTextUsb()
1035 Converts a USB WWID device path structure to its string representative.
1040 of the display node is used, where applicable. If DisplayOnly
1041 is FALSE, then the longer text representation of the display node
1044 representation for a device node can be used, where applicable.
1063 …Length = (UINT16)((DevicePathNodeLength ((EFI_DEVICE_PATH_PROTOCOL *)UsbWWId) - sizeof (U… in DevPathToTextUsbWWID()
1064 if ((Length >= 1) && (SerialNumberStr[Length - 1] != 0)) { in DevPathToTextUsbWWID()
1066 // In case no NULL terminator in SerialNumber, create a new one with NULL terminator in DevPathToTextUsbWWID()
1078 UsbWWId->VendorId, in DevPathToTextUsbWWID()
1079 UsbWWId->ProductId, in DevPathToTextUsbWWID()
1080 UsbWWId->InterfaceNumber, in DevPathToTextUsbWWID()
1086 Converts a Logic Unit device path structure to its string representative.
1091 of the display node is used, where applicable. If DisplayOnly
1092 is FALSE, then the longer text representation of the display node
1095 representation for a device node can be used, where applicable.
1109 UefiDevicePathLibCatPrint (Str, "Unit(0x%x)", LogicalUnit->Lun); in DevPathToTextLogicalUnit()
1113 Converts a USB class device path structure to its string representative.
1118 of the display node is used, where applicable. If DisplayOnly
1119 is FALSE, then the longer text representation of the display node
1122 representation for a device node can be used, where applicable.
1139 switch (UsbClass->DeviceClass) { in DevPathToTextUsbClass()
1197 UsbClass->VendorId, in DevPathToTextUsbClass()
1198 UsbClass->ProductId, in DevPathToTextUsbClass()
1199 UsbClass->DeviceSubClass, in DevPathToTextUsbClass()
1200 UsbClass->DeviceProtocol in DevPathToTextUsbClass()
1205 if (UsbClass->DeviceClass == USB_CLASS_RESERVE) { in DevPathToTextUsbClass()
1206 if (UsbClass->DeviceSubClass == USB_SUBCLASS_FW_UPDATE) { in DevPathToTextUsbClass()
1210 UsbClass->VendorId, in DevPathToTextUsbClass()
1211 UsbClass->ProductId, in DevPathToTextUsbClass()
1212 UsbClass->DeviceProtocol in DevPathToTextUsbClass()
1215 } else if (UsbClass->DeviceSubClass == USB_SUBCLASS_IRDA_BRIDGE) { in DevPathToTextUsbClass()
1219 UsbClass->VendorId, in DevPathToTextUsbClass()
1220 UsbClass->ProductId, in DevPathToTextUsbClass()
1221 UsbClass->DeviceProtocol in DevPathToTextUsbClass()
1224 } else if (UsbClass->DeviceSubClass == USB_SUBCLASS_TEST) { in DevPathToTextUsbClass()
1228 UsbClass->VendorId, in DevPathToTextUsbClass()
1229 UsbClass->ProductId, in DevPathToTextUsbClass()
1230 UsbClass->DeviceProtocol in DevPathToTextUsbClass()
1239 UsbClass->VendorId, in DevPathToTextUsbClass()
1240 UsbClass->ProductId, in DevPathToTextUsbClass()
1241 UsbClass->DeviceClass, in DevPathToTextUsbClass()
1242 UsbClass->DeviceSubClass, in DevPathToTextUsbClass()
1243 UsbClass->DeviceProtocol in DevPathToTextUsbClass()
1248 Converts a SATA device path structure to its string representative.
1253 of the display node is used, where applicable. If DisplayOnly
1254 is FALSE, then the longer text representation of the display node
1257 representation for a device node can be used, where applicable.
1274 Sata->HBAPortNumber, in DevPathToTextSata()
1275 Sata->PortMultiplierPortNumber, in DevPathToTextSata()
1276 Sata->Lun in DevPathToTextSata()
1281 Converts a I20 device path structure to its string representative.
1286 of the display node is used, where applicable. If DisplayOnly
1287 is FALSE, then the longer text representation of the display node
1290 representation for a device node can be used, where applicable.
1304 UefiDevicePathLibCatPrint (Str, "I2O(0x%x)", I2ODevPath->Tid); in DevPathToTextI2O()
1308 Converts a MAC address device path structure to its string representative.
1313 of the display node is used, where applicable. If DisplayOnly
1314 is FALSE, then the longer text representation of the display node
1317 representation for a device node can be used, where applicable.
1335 if ((MacDevPath->IfType == 0x01) || (MacDevPath->IfType == 0x00)) { in DevPathToTextMacAddr()
1342 UefiDevicePathLibCatPrint (Str, "%02x", MacDevPath->MacAddress.Addr[Index]); in DevPathToTextMacAddr()
1345 UefiDevicePathLibCatPrint (Str, ",0x%x)", MacDevPath->IfType); in DevPathToTextMacAddr()
1382 …evicePathLibCatPrint (Str, "%d.%d.%d.%d", Address->Addr[0], Address->Addr[1], Address->Addr[2], Ad… in CatIPv4Address()
1400 Address->Addr[0], in CatIPv6Address()
1401 Address->Addr[1], in CatIPv6Address()
1402 Address->Addr[2], in CatIPv6Address()
1403 Address->Addr[3], in CatIPv6Address()
1404 Address->Addr[4], in CatIPv6Address()
1405 Address->Addr[5], in CatIPv6Address()
1406 Address->Addr[6], in CatIPv6Address()
1407 Address->Addr[7], in CatIPv6Address()
1408 Address->Addr[8], in CatIPv6Address()
1409 Address->Addr[9], in CatIPv6Address()
1410 Address->Addr[10], in CatIPv6Address()
1411 Address->Addr[11], in CatIPv6Address()
1412 Address->Addr[12], in CatIPv6Address()
1413 Address->Addr[13], in CatIPv6Address()
1414 Address->Addr[14], in CatIPv6Address()
1415 Address->Addr[15] in CatIPv6Address()
1420 Converts a IPv4 device path structure to its string representative.
1425 of the display node is used, where applicable. If DisplayOnly
1426 is FALSE, then the longer text representation of the display node
1429 representation for a device node can be used, where applicable.
1444 CatIPv4Address (Str, &IPDevPath->RemoteIpAddress); in DevPathToTextIPv4()
1452 CatNetworkProtocol (Str, IPDevPath->Protocol); in DevPathToTextIPv4()
1454 UefiDevicePathLibCatPrint (Str, ",%s,", IPDevPath->StaticIpAddress ? "Static" : "DHCP"); in DevPathToTextIPv4()
1455 CatIPv4Address (Str, &IPDevPath->LocalIpAddress); in DevPathToTextIPv4()
1458 CatIPv4Address (Str, &IPDevPath->GatewayIpAddress); in DevPathToTextIPv4()
1460 CatIPv4Address (Str, &IPDevPath->SubnetMask); in DevPathToTextIPv4()
1467 Converts a IPv6 device path structure to its string representative.
1472 of the display node is used, where applicable. If DisplayOnly
1473 is FALSE, then the longer text representation of the display node
1476 representation for a device node can be used, where applicable.
1491 CatIPv6Address (Str, &IPDevPath->RemoteIpAddress); in DevPathToTextIPv6()
1498 CatNetworkProtocol (Str, IPDevPath->Protocol); in DevPathToTextIPv6()
1500 switch (IPDevPath->IpAddressOrigin) { in DevPathToTextIPv6()
1512 CatIPv6Address (Str, &IPDevPath->LocalIpAddress); in DevPathToTextIPv6()
1515 UefiDevicePathLibCatPrint (Str, ",0x%x,", IPDevPath->PrefixLength); in DevPathToTextIPv6()
1516 CatIPv6Address (Str, &IPDevPath->GatewayIpAddress); in DevPathToTextIPv6()
1528 of the display node is used, where applicable. If DisplayOnly
1529 is FALSE, then the longer text representation of the display node
1532 representation for a device node can be used, where applicable.
1549 InfiniBand->ResourceFlags, in DevPathToTextInfiniBand()
1550 G(InfiniBand->PortGid), in DevPathToTextInfiniBand()
1551 InfiniBand->ServiceId, in DevPathToTextInfiniBand()
1552 InfiniBand->TargetPortId, in DevPathToTextInfiniBand()
1553 InfiniBand->DeviceId in DevPathToTextInfiniBand()
1558 Converts a UART device path structure to its string representative.
1563 of the display node is used, where applicable. If DisplayOnly
1564 is FALSE, then the longer text representation of the display node
1567 representation for a device node can be used, where applicable.
1582 switch (Uart->Parity) { in DevPathToTextUart()
1612 if (Uart->BaudRate == 0) { in DevPathToTextUart()
1615 UefiDevicePathLibCatPrint (Str, "Uart(%ld,", Uart->BaudRate); in DevPathToTextUart()
1618 if (Uart->DataBits == 0) { in DevPathToTextUart()
1621 UefiDevicePathLibCatPrint (Str, "%d,", Uart->DataBits); in DevPathToTextUart()
1626 switch (Uart->StopBits) { in DevPathToTextUart()
1655 of the display node is used, where applicable. If DisplayOnly
1656 is FALSE, then the longer text representation of the display node
1659 representation for a device node can be used, where applicable.
1678 ISCSIDevPath->TargetName, in DevPathToTextiSCSI()
1679 ISCSIDevPath->TargetPortalGroupTag in DevPathToTextiSCSI()
1681 for (Index = 0; Index < sizeof (ISCSIDevPath->Lun) / sizeof (UINT8); Index++) { in DevPathToTextiSCSI()
1682 UefiDevicePathLibCatPrint (Str, "%02x", ((UINT8 *)&ISCSIDevPath->Lun)[Index]); in DevPathToTextiSCSI()
1685 Options = ISCSIDevPath->LoginOption; in DevPathToTextiSCSI()
1696 UefiDevicePathLibCatPrint (Str, "%s)", (ISCSIDevPath->NetworkProtocol == 0) ? "TCP" : "reserved"); in DevPathToTextiSCSI()
1700 Converts a VLAN device path structure to its string representative.
1705 of the display node is used, where applicable. If DisplayOnly
1706 is FALSE, then the longer text representation of the display node
1709 representation for a device node can be used, where applicable.
1723 UefiDevicePathLibCatPrint (Str, "Vlan(%d)", Vlan->VlanId); in DevPathToTextVlan()
1727 Converts a Bluetooth device path structure to its string representative.
1732 of the display node is used, where applicable. If DisplayOnly
1733 is FALSE, then the longer text representation of the display node
1736 representation for a device node can be used, where applicable.
1753 Bluetooth->BD_ADDR.Address[0], in DevPathToTextBluetooth()
1754 Bluetooth->BD_ADDR.Address[1], in DevPathToTextBluetooth()
1755 Bluetooth->BD_ADDR.Address[2], in DevPathToTextBluetooth()
1756 Bluetooth->BD_ADDR.Address[3], in DevPathToTextBluetooth()
1757 Bluetooth->BD_ADDR.Address[4], in DevPathToTextBluetooth()
1758 Bluetooth->BD_ADDR.Address[5] in DevPathToTextBluetooth()
1763 Converts a Wi-Fi device path structure to its string representative.
1768 of the display node is used, where applicable. If DisplayOnly
1769 is FALSE, then the longer text representation of the display node
1772 representation for a device node can be used, where applicable.
1789 CopyMem (SSId, WiFi->SSId, 32); in DevPathToTextWiFi()
1791 UefiDevicePathLibCatPrint (Str, "Wi-Fi(%s)", SSId); in DevPathToTextWiFi()
1795 Converts a Bluetooth device path structure to its string representative.
1800 of the display node is used, where applicable. If DisplayOnly
1801 is FALSE, then the longer text representation of the display node
1804 representation for a device node can be used, where applicable.
1821 BluetoothLE->Address.Address[0], in DevPathToTextBluetoothLE()
1822 BluetoothLE->Address.Address[1], in DevPathToTextBluetoothLE()
1823 BluetoothLE->Address.Address[2], in DevPathToTextBluetoothLE()
1824 BluetoothLE->Address.Address[3], in DevPathToTextBluetoothLE()
1825 BluetoothLE->Address.Address[4], in DevPathToTextBluetoothLE()
1826 BluetoothLE->Address.Address[5], in DevPathToTextBluetoothLE()
1827 BluetoothLE->Address.Type in DevPathToTextBluetoothLE()
1832 Converts a DNS device path structure to its string representative.
1837 of the display node is used, where applicable. If DisplayOnly
1838 is FALSE, then the longer text representation of the display node
1841 representation for a device node can be used, where applicable.
1857 …nt = (UINT32)(DevicePathNodeLength (DnsDevPath) - sizeof (EFI_DEVICE_PATH_PROTOCOL) - sizeof (DnsD… in DevPathToTextDns()
1862 if (DnsDevPath->IsIPv6 == 0x00) { in DevPathToTextDns()
1863 CatIPv4Address (Str, &(DnsDevPath->DnsServerIp[DnsServerIpIndex].v4)); in DevPathToTextDns()
1865 CatIPv6Address (Str, &(DnsDevPath->DnsServerIp[DnsServerIpIndex].v6)); in DevPathToTextDns()
1868 if (DnsServerIpIndex < DnsServerIpCount - 1) { in DevPathToTextDns()
1877 Converts a URI device path structure to its string representative.
1882 of the display node is used, where applicable. If DisplayOnly
1883 is FALSE, then the longer text representation of the display node
1886 representation for a device node can be used, where applicable.
1905 UriLength = DevicePathNodeLength (Uri) - sizeof (URI_DEVICE_PATH); in DevPathToTextUri()
1913 CopyMem (UriStr, Uri->Uri, UriLength); in DevPathToTextUri()
1920 Converts a Hard drive device path structure to its string representative.
1925 of the display node is used, where applicable. If DisplayOnly
1926 is FALSE, then the longer text representation of the display node
1929 representation for a device node can be used, where applicable.
1943 switch (Hd->SignatureType) { in DevPathToTextHardDrive()
1948 Hd->PartitionNumber, in DevPathToTextHardDrive()
1950 // *((UINT32 *)(&(Hd->Signature[0]))) in DevPathToTextHardDrive()
1951 le32dec(&(Hd->Signature[0])) in DevPathToTextHardDrive()
1959 Hd->PartitionNumber, in DevPathToTextHardDrive()
1961 G(&(Hd->Signature[0])) in DevPathToTextHardDrive()
1969 Hd->PartitionNumber, in DevPathToTextHardDrive()
1970 Hd->SignatureType in DevPathToTextHardDrive()
1978 UefiDevicePathLibCatPrint (Str, ",0x%lx,0x%lx)", Hd->PartitionStart, Hd->PartitionSize); in DevPathToTextHardDrive()
1983 Converts a CDROM device path structure to its string representative.
1988 of the display node is used, where applicable. If DisplayOnly
1989 is FALSE, then the longer text representation of the display node
1992 representation for a device node can be used, where applicable.
2007 UefiDevicePathLibCatPrint (Str, "CDROM(0x%x)", Cd->BootEntry); in DevPathToTextCDROM()
2011 …UefiDevicePathLibCatPrint (Str, "CDROM(0x%x,0x%lx,0x%lx)", Cd->BootEntry, Cd->PartitionStart, Cd->… in DevPathToTextCDROM()
2015 Converts a File device path structure to its string representative.
2020 of the display node is used, where applicable. If DisplayOnly
2021 is FALSE, then the longer text representation of the display node
2024 representation for a device node can be used, where applicable.
2039 ucs2_to_utf8(Fp->PathName, &name); in DevPathToTextFilePath()
2045 Converts a Media protocol device path structure to its string representative.
2050 of the display node is used, where applicable. If DisplayOnly
2051 is FALSE, then the longer text representation of the display node
2054 representation for a device node can be used, where applicable.
2068 UefiDevicePathLibCatPrint (Str, "Media(%36s)", G(&MediaProt->Protocol)); in DevPathToTextMediaProtocol()
2072 Converts a Firmware Volume device path structure to its string representative.
2077 of the display node is used, where applicable. If DisplayOnly
2078 is FALSE, then the longer text representation of the display node
2081 representation for a device node can be used, where applicable.
2095 UefiDevicePathLibCatPrint (Str, "Fv(%36s)", G(&Fv->FvName)); in DevPathToTextFv()
2099 Converts a Firmware Volume File device path structure to its string representative.
2104 of the display node is used, where applicable. If DisplayOnly
2105 is FALSE, then the longer text representation of the display node
2108 representation for a device node can be used, where applicable.
2122 UefiDevicePathLibCatPrint (Str, "FvFile(%36s)", G(&FvFile->FvFileName)); in DevPathToTextFvFile()
2126 Converts a Relative Offset device path structure to its string representative.
2131 of the display node is used, where applicable. If DisplayOnly
2132 is FALSE, then the longer text representation of the display node
2135 representation for a device node can be used, where applicable.
2152 Offset->StartingOffset, in DevPathRelativeOffsetRange()
2153 Offset->EndingOffset in DevPathRelativeOffsetRange()
2158 Converts a Ram Disk device path structure to its string representative.
2163 of the display node is used, where applicable. If DisplayOnly
2164 is FALSE, then the longer text representation of the display node
2167 representation for a device node can be used, where applicable.
2182 if (CompareGuid (&RamDisk->TypeGuid, &gEfiVirtualDiskGuid)) { in DevPathToTextRamDisk()
2186 LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0], in DevPathToTextRamDisk()
2187 LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0], in DevPathToTextRamDisk()
2188 RamDisk->Instance in DevPathToTextRamDisk()
2190 } else if (CompareGuid (&RamDisk->TypeGuid, &gEfiVirtualCdGuid)) { in DevPathToTextRamDisk()
2194 LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0], in DevPathToTextRamDisk()
2195 LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0], in DevPathToTextRamDisk()
2196 RamDisk->Instance in DevPathToTextRamDisk()
2198 } else if (CompareGuid (&RamDisk->TypeGuid, &gEfiPersistentVirtualDiskGuid)) { in DevPathToTextRamDisk()
2202 LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0], in DevPathToTextRamDisk()
2203 LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0], in DevPathToTextRamDisk()
2204 RamDisk->Instance in DevPathToTextRamDisk()
2206 } else if (CompareGuid (&RamDisk->TypeGuid, &gEfiPersistentVirtualCdGuid)) { in DevPathToTextRamDisk()
2210 LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0], in DevPathToTextRamDisk()
2211 LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0], in DevPathToTextRamDisk()
2212 RamDisk->Instance in DevPathToTextRamDisk()
2218 LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0], in DevPathToTextRamDisk()
2219 LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0], in DevPathToTextRamDisk()
2220 RamDisk->Instance, in DevPathToTextRamDisk()
2221 G(&RamDisk->TypeGuid) in DevPathToTextRamDisk()
2227 Converts a BIOS Boot Specification device path structure to its string representative.
2232 of the display node is used, where applicable. If DisplayOnly
2233 is FALSE, then the longer text representation of the display node
2236 representation for a device node can be used, where applicable.
2251 switch (Bbs->DeviceType) { in DevPathToTextBBS()
2282 UefiDevicePathLibCatPrint (Str, "BBS(%s,%s", Type, Bbs->String); in DevPathToTextBBS()
2284 UefiDevicePathLibCatPrint (Str, "BBS(0x%x,%s", Bbs->DeviceType, Bbs->String); in DevPathToTextBBS()
2292 UefiDevicePathLibCatPrint (Str, ",0x%x)", Bbs->StatusFlag); in DevPathToTextBBS()
2296 Converts an End-of-Device-Path structure to its string representative.
2301 of the display node is used, where applicable. If DisplayOnly
2302 is FALSE, then the longer text representation of the display node
2305 representation for a device node can be used, where applicable.
2334 of the display node is used, where applicable. If DisplayOnly
2335 is FALSE, then the longer text representation of the display node
2338 representation for a device node can be used, where applicable.
2362 // It's a node whose type cannot be recognized in DevPathToTextNodeGeneric()
2367 // It's a node whose type can be recognized in DevPathToTextNodeGeneric()
2437 Converts a device node to its string representation.
2439 @param DeviceNode A Pointer to the device node to be converted.
2441 of the display node is used, where applicable. If DisplayOnly
2442 is FALSE, then the longer text representation of the display node
2445 representation for a device node can be used, where applicable.
2447 @return A pointer to the allocated text representation of the device node or NULL if DeviceNode
2472 // If not found, use a generic function in UefiDevicePathLibConvertDeviceNodeToText()
2496 Converts a device path to its text representation.
2498 @param DevicePath A Pointer to the device to be converted.
2500 of the display node is used, where applicable. If DisplayOnly
2501 is FALSE, then the longer text representation of the display node
2504 representation for a device node can be used, where applicable.
2506 @return A pointer to the allocated text representation of the device path or
2537 // If not found, use a generic function in UefiDevicePathLibConvertDevicePathToText()
2551 // Put a path separator in if needed in UefiDevicePathLibConvertDevicePathToText()
2596 return -1; in efidp_format_device_path()
2613 return -1; in efidp_format_device_path_node()
2635 ucs2_to_utf8(fp->PathName, &name); in efidp_extract_file_path()