Searched refs:HID (Results 1 - 24 of 24) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
H A DLegacySio.c145 if (ResourceList->Device.HID == EISA_PNP_ID (0x500) || ResourceList->Device.HID == EISA_PNP_ID (0x501)) {
182 if (ResourceList->Device.HID == EISA_PNP_ID (0x400) || ResourceList->Device.HID == EISA_PNP_ID (0x401)) {
198 if (ResourceList->Device.HID == EISA_PNP_ID (0x604)) {
214 // Ignore lower byte of HID. Pnp0fxx is any type of mouse.
216 // Hid = ResourceList->Device.HID & 0xff00ffff;
H A DLegacyBbs.c92 if (IsaIo->ResourceList->Device.HID != EISA_PNP_ID (0x604)) {
H A DLegacyPci.c1998 if (IsaIo->ResourceList->Device.HID != EISA_PNP_ID (0x303) || IsaIo->ResourceList->Device.UID != 0) {
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/IsaAcpiDxe/
H A DIsaAcpi.c170 if (Device->HID == gPcatIsaAcpiDeviceList[Index].Device.HID &&
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Include/Protocol/
H A DIsaAcpi.h98 UINT32 HID; ///< The ACPI Hardware Identifier value associated with an ISA controller. Matchs ACPI DSDT contents. member in struct:__anon10451
106 EFI_ISA_ACPI_DEVICE_ID Device; ///< The ACPI HID/UID associated with an ISA controller.
122 @param[out] Device The pointer to an ISA controller named by ACPI HID/UID.
144 @param[in] Device The pointer to an ISA controller named by ACPI HID/UID.
167 @param[in] Device The pointer to an ISA controller named by ACPI HID/UID.
190 @param[in] Device The pointer to an ISA controller named by ACPI HID/UID.
211 @param[in] Device The pointer to an ISA controller named by ACPI HID/UID.
253 @param[in] Device The pointer to an ISA controller named by ACPI HID/UID.
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DDevicePath.c311 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
312 CatPrint (Str, L"Acpi(PNP%04x,%x)", (UINTN) EISA_ID_TO_NUM (Acpi->HID), (UINTN) Acpi->UID);
314 CatPrint (Str, L"Acpi(%08x,%x)", (UINTN) Acpi->HID, (UINTN) Acpi->UID);
337 // Index for HID, UID and CID strings, 0 for non-exist
388 if ((ExtendedAcpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
389 CatPrint (Str, L"PNP%04x,", (UINTN) EISA_ID_TO_NUM (ExtendedAcpi->HID));
391 CatPrint (Str, L"%08x,", (UINTN) ExtendedAcpi->HID);
405 if ((ExtendedAcpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
406 CatPrint (Str, L"PNP%04x,", (UINTN) EISA_ID_TO_NUM (ExtendedAcpi->HID));
408 CatPrint (Str, L"%08x,", (UINTN) ExtendedAcpi->HID);
[all...]
H A DBdsBoot.c2450 which HID is floppy device.
2493 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigDevicePath.c305 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
306 CatPrint (Str, L"Acpi(PNP%04x,%x)", (UINTN) EISA_ID_TO_NUM (Acpi->HID), (UINTN) Acpi->UID);
308 CatPrint (Str, L"Acpi(%08x,%x)", (UINTN) Acpi->HID, (UINTN) Acpi->UID);
330 // Index for HID, UID and CID strings, 0 for non-exist
381 if ((ExtendedAcpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
382 CatPrint (Str, L"PNP%04x,", (UINTN) EISA_ID_TO_NUM (ExtendedAcpi->HID));
384 CatPrint (Str, L"%08x,", (UINTN) ExtendedAcpi->HID);
398 if ((ExtendedAcpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
399 CatPrint (Str, L"PNP%04x,", (UINTN) EISA_ID_TO_NUM (ExtendedAcpi->HID));
401 CatPrint (Str, L"%08x,", (UINTN) ExtendedAcpi->HID);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DConsistMapping.c340 if (Acpi1->HID > Acpi2->HID || (Acpi1->HID == Acpi2->HID && Acpi1->UID > Acpi2->UID)) {
344 if (Acpi1->HID == Acpi2->HID && Acpi1->UID == Acpi2->UID) {
926 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
927 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
1063 switch (EISA_ID_TO_NUM (Acpi->HID)) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/
H A DIsaBus.c610 Node.Acpi.HID = IsaDeviceResourceList->Device.HID;
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DDevicePath.h190 UINT32 HID; member in struct:__anon15620
212 UINT32 HID; member in struct:__anon15621
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DevicePathDxe/
H A DDevicePathToText.c341 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST) {
342 switch (EISA_ID_TO_NUM (Acpi->HID)) {
368 CatPrint (Str, L"Acpi(PNP%04x,0x%x)", EISA_ID_TO_NUM (Acpi->HID), Acpi->UID);
372 CatPrint (Str, L"Acpi(0x%08x,0x%x)", Acpi->HID, Acpi->UID);
408 Converts a ACPI extended HID device path structure to its string representative.
440 EisaIdToText (AcpiEx->HID, HIDText);
459 if (AcpiEx->HID == 0) {
H A DDevicePathFromText.c896 Converts a text device path node to ACPI HID device path structure.
900 @return A pointer to the newly-created ACPI HID device path structure.
920 EisaIdFromText (HIDStr, &Acpi->HID);
927 Converts a text device path node to ACPI HID device path structure.
932 @return A pointer to the newly-created ACPI HID device path structure.
951 Acpi->HID = EFI_PNP_ID (PnPId);
1092 EisaIdFromText (HIDStr, &AcpiEx->HID);
1134 EisaIdFromText (HIDStr, &AcpiEx->HID);
1140 // HID string is NULL
2148 Converts a text device path node to USB HID devic
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDevicePath.h188 UINT32 HID; member in struct:__anon12056
210 UINT32 HID; member in struct:__anon12057
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
H A DIsaFloppy.c142 if (IsaIo->ResourceList->Device.HID != EISA_PNP_ID (0x604)) {
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/XhciDxe/
H A DXhciSched.h644 UINT32 HID:1; member in struct:_ENDPOINT_CONTEXT
673 UINT32 HID:1; member in struct:_ENDPOINT_CONTEXT_64
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/
H A DPs2Keyboard.c143 if (IsaIo->ResourceList->Device.HID != EISA_PNP_ID (0x303) || IsaIo->ResourceList->Device.UID != 0) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/
H A DPs2MouseAbsolutePointer.c75 switch (IsaIo->ResourceList->Device.HID) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/
H A DPs2Mouse.c75 switch (IsaIo->ResourceList->Device.HID) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
H A DIsaIo.c483 IsaIoDevice->IsaIo.ResourceList->Device.HID = AcpiNode->HID;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DConsoleOption.c65 (ReadUnaligned32 (&Acpi->HID) == EISA_PNP_ID (0x0501))
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DMap.c247 // Acpi.HID = 0X0604 -> Floppy
263 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/
H A DSerial.c352 if (IsaIo->ResourceList->Device.HID != EISA_PNP_ID (0x501)) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/
H A DBiosKeyboard.c164 if (IsaIo->ResourceList->Device.HID != EISA_PNP_ID (0x303) || IsaIo->ResourceList->Device.UID != 0) {

Completed in 1965 milliseconds