HomeSort by relevance Sort by last modified time
    Searched defs:Acpi (Results 1 - 20 of 20) sorted by null

  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuBootOrderLib/
ExtraRootBusMap.c 100 CONST ACPI_HID_DEVICE_PATH *Acpi;
103 Acpi = UserStruct;
105 return *Uid < Acpi->UID ? -1 :
106 *Uid > Acpi->UID ? 1 :
117 numbers. The ACPI HID device path nodes however that are associated with
175 // Collect the ACPI device path protocols of the root bridges.
187 // Examine if the device path is an ACPI HID one, and if so, if UID is
220 ACPI_HID_DEVICE_PATH *Acpi;
223 Acpi = OrderedCollectionUserStruct (Entry);
224 Map->BusNumbers[Idx] = Acpi->UID;
    [all...]
QemuBootOrderLib.c 834 // ACPI UID
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/
PciHostBridge.h 24 #include <IndustryStandard/Acpi.h>
51 * PCI Root Bridge Device Path (ACPI Device Node + End Node)
54 ACPI_HID_DEVICE_PATH Acpi;
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
HobGeneration.h 80 TABLE_HOB Acpi;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciSioSerialDxe/
Serial.c 178 ACPI_HID_DEVICE_PATH *Acpi;
218 Acpi = (ACPI_HID_DEVICE_PATH *) DevicePath;
222 if (DevicePathType (Acpi) != ACPI_DEVICE_PATH ||
223 (DevicePathSubType (Acpi) != ACPI_DP && DevicePathSubType (Acpi) != ACPI_EXTENDED_DP) ||
224 Acpi->HID != EISA_PNP_ID (0x501)
511 // Get the base address information from ACPI resource descriptor.
796 ACPI_HID_DEVICE_PATH *Acpi;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Map.c 141 ACPI_HID_DEVICE_PATH *Acpi;
148 // Acpi.HID = 0X0604 -> Floppy
163 Acpi = (ACPI_HID_DEVICE_PATH *) DevicePath;
164 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
ConsoleOption.c 55 @param Acpi Device path node to be checked
63 IN ACPI_HID_DEVICE_PATH *Acpi
67 (DevicePathType (Acpi) == ACPI_DEVICE_PATH) &&
68 (DevicePathSubType (Acpi) == ACPI_DP) &&
69 (ReadUnaligned32 (&Acpi->HID) == EISA_PNP_ID (0x0501))
106 ACPI_HID_DEVICE_PATH *Acpi;
118 Acpi = (ACPI_HID_DEVICE_PATH *) Node;
119 if (IsIsaSerialNode (Acpi)) {
120 CopyMem (&Com, &Acpi->UID, sizeof (UINT32));
235 ACPI_HID_DEVICE_PATH *Acpi;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerLib/
ConsoleOption.c 70 @param Acpi Device path node to be checked
78 IN ACPI_HID_DEVICE_PATH *Acpi
82 (DevicePathType (Acpi) == ACPI_DEVICE_PATH) &&
83 (DevicePathSubType (Acpi) == ACPI_DP) &&
84 (ReadUnaligned32 (&Acpi->HID) == EISA_PNP_ID (0x0501))
121 ACPI_HID_DEVICE_PATH *Acpi;
132 Acpi = (ACPI_HID_DEVICE_PATH *) Node;
133 if (IsIsaSerialNode (Acpi)) {
134 CopyMem (&Com, &Acpi->UID, sizeof (UINT32));
232 ACPI_HID_DEVICE_PATH *Acpi;
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
dpath.c 557 ACPI_HID_DEVICE_PATH *Acpi;
559 Acpi = DevPath;
560 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
561 CatPrint(Str, L"Acpi(PNP%04x,%x)", EISA_ID_TO_NUM (Acpi->HID), Acpi->UID);
563 CatPrint(Str, L"Acpi(%08x,%x)", Acpi->HID, Acpi->UID);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathToText.c 343 Converts a ACPI device path structure to its string representative.
363 ACPI_HID_DEVICE_PATH *Acpi;
365 Acpi = DevPath;
366 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
367 switch (EISA_ID_TO_NUM (Acpi->HID)) {
369 UefiDevicePathLibCatPrint (Str, L"PciRoot(0x%x)", Acpi->UID);
373 UefiDevicePathLibCatPrint (Str, L"PcieRoot(0x%x)", Acpi->UID);
377 UefiDevicePathLibCatPrint (Str, L"Floppy(0x%x)", Acpi->UID);
381 UefiDevicePathLibCatPrint (Str, L"Keyboard(0x%x)", Acpi->UID);
385 UefiDevicePathLibCatPrint (Str, L"Serial(0x%x)", Acpi->UID);
    [all...]
DevicePathFromText.c 831 Converts a generic ACPI text device path node to ACPI device path structure.
835 @return A pointer to ACPI device path structure.
866 Converts a text device path node to ACPI HID device path structure.
870 @return A pointer to the newly-created ACPI HID device path structure.
880 ACPI_HID_DEVICE_PATH *Acpi;
884 Acpi = (ACPI_HID_DEVICE_PATH *) CreateDeviceNode (
890 Acpi->HID = EisaIdFromText (HIDStr);
891 Acpi->UID = (UINT32) Strtoi (UIDStr);
893 return (EFI_DEVICE_PATH_PROTOCOL *) Acpi;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
ConsistMapping.c 1037 ACPI_HID_DEVICE_PATH *Acpi;
1042 Acpi = (ACPI_HID_DEVICE_PATH *) DevicePathNode;
1043 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
1044 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
1046 AppendCSDNum (MappingItem, Acpi->UID);
1214 ACPI_HID_DEVICE_PATH *Acpi;
1223 Acpi = (ACPI_HID_DEVICE_PATH *) DevicePathNode;
1224 switch (EISA_ID_TO_NUM (Acpi->HID)) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/
EfiDevicePath.h 104 // ACPI Device Paths
492 ACPI_HID_DEVICE_PATH Acpi;
540 ACPI_HID_DEVICE_PATH *Acpi;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsBoot.c     [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsBoot.c     [all...]
  /external/syslinux/efi32/include/efi/
efidevp.h 341 ACPI_HID_DEVICE_PATH Acpi;
375 ACPI_HID_DEVICE_PATH *Acpi;
  /external/syslinux/efi64/include/efi/
efidevp.h 341 ACPI_HID_DEVICE_PATH Acpi;
375 ACPI_HID_DEVICE_PATH *Acpi;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efidevp.h 341 ACPI_HID_DEVICE_PATH Acpi;
375 ACPI_HID_DEVICE_PATH *Acpi;
  /external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
DevicePath.h 53 ///< 0x02 ACPI Device Path
113 /// ACPI Device Paths
462 ACPI_HID_DEVICE_PATH Acpi;
499 ACPI_HID_DEVICE_PATH *Acpi;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DevicePath.h 51 ///< 0x02 ACPI Device Path.
195 /// ACPI Device Paths.
200 /// ACPI Device Path SubType.
208 /// corresponding _HID in the ACPI name space.
212 /// Unique ID that is required by ACPI if two devices have the
214 /// _UID/_HID pair in the ACPI name space. Only the 32-bit
216 /// not be used for the _UID in the ACPI name space.
222 /// Expanded ACPI Device Path SubType.
230 /// corresponding _HID in the ACPI name space.
234 /// Unique ID that is required by ACPI if two devices have the
    [all...]

Completed in 592 milliseconds