Home | History | Annotate | Download | only in AcpiPlatformDxe

Lines Matching refs:Iso

78   EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE_STRUCTURE    *Iso;

100 (1 + PciLinkIsoCount) * sizeof (*Iso) +
137 Iso = Ptr;
138 Iso->Type = EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE;
139 Iso->Length = sizeof (*Iso);
140 Iso->Bus = 0x00; // ISA
141 Iso->Source = 0x00; // IRQ0
142 Iso->GlobalSystemInterruptVector = 0x00000002;
143 Iso->Flags = 0x0000; // Conforms to specs of the bus
144 ++Iso;
153 Iso->Type = EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE;
154 Iso->Length = sizeof (*Iso);
155 Iso->Bus = 0x00; // ISA
156 Iso->Source = (UINT8) Loop;
157 Iso->GlobalSystemInterruptVector = (UINT32) Loop;
158 Iso->Flags = 0x000D; // Level-tiggered, Active High
159 ++Iso;
162 (UINTN) (Iso - (EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE_STRUCTURE *)Ptr) ==
165 Ptr = Iso;