Home
last modified time | relevance | path

Searched refs:DevPathNode (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/OvmfPkg/Library/PlatformBdsLib/
DBdsPlatform.c729 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; in SetPciIntLine() local
741 DevPathNode = DevicePathFromHandle (Handle); in SetPciIntLine()
742 ASSERT (DevPathNode != NULL); in SetPciIntLine()
743 DevPath = DevPathNode; in SetPciIntLine()
746 if (DevicePathType (DevPathNode) == ACPI_DEVICE_PATH && in SetPciIntLine()
747 DevicePathSubType (DevPathNode) == ACPI_DP && in SetPciIntLine()
748 ((ACPI_HID_DEVICE_PATH *)DevPathNode)->HID == EISA_PNP_ID(0x0A03)) { in SetPciIntLine()
749 RootBusNumber = ((ACPI_HID_DEVICE_PATH *)DevPathNode)->UID; in SetPciIntLine()
759 while (!IsDevicePathEnd (DevPathNode)) { in SetPciIntLine()
760 if (DevicePathType (DevPathNode) == HARDWARE_DEVICE_PATH && in SetPciIntLine()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/I2c/I2cDxe/
DI2cBus.c393 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; in I2cBusDriverSupported() local
457 DevPathNode = NextDevicePathNode (RemainingDevicePath); in I2cBusDriverSupported()
458 if (!IsDevicePathEnd (DevPathNode)) { in I2cBusDriverSupported()
459 if ((DevicePathType (DevPathNode) != HARDWARE_DEVICE_PATH) || in I2cBusDriverSupported()
460 (DevicePathSubType (DevPathNode) != HW_CONTROLLER_DP)) { in I2cBusDriverSupported()
464 RemainingControllerNumber = ((CONTROLLER_DEVICE_PATH *) DevPathNode)->ControllerNumber; in I2cBusDriverSupported()
872 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; in RegisterI2cDevice() local
891 DevPathNode = NextDevicePathNode (RemainingDevicePath); in RegisterI2cDevice()
892 if ((DevicePathType (DevPathNode) == HARDWARE_DEVICE_PATH) && in RegisterI2cDevice()
893 (DevicePathSubType(DevPathNode) == HW_CONTROLLER_DP)) { in RegisterI2cDevice()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PlatformDriOverrideDxe/
DPlatDriOverrideDxe.c246 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; in GetImageName() local
262 DevPathNode = Image->FilePath; in GetImageName()
264 while (!IsDevicePathEnd (DevPathNode)) { in GetImageName()
268 AlignedDevPathNode = AllocateCopyPool (DevicePathNodeLength(DevPathNode), DevPathNode); in GetImageName()
307 DevPathNode = NextDevicePathNode (DevPathNode); in GetImageName()